home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / ODF / AMSample / Sources / PartInfo.fr < prev    next >
Encoding:
Text File  |  1996-06-03  |  1.6 KB  |  85 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                PartInfo.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef FWPART_FR
  15. #include "FWPart.fr"
  16. #endif
  17.  
  18. #ifndef DEFINES_K
  19. #include "Defines.k"
  20. #endif
  21.  
  22. #ifndef BINDING_K
  23. #include "Binding.k"
  24. #endif
  25.  
  26. #ifndef SLGCONST_K
  27. #include "SLGConst.k" 
  28. #endif
  29.  
  30. #ifndef FWVIEWS_FR
  31. #include "FWViews.fr"
  32. #endif
  33.  
  34. //----------------------------------------------------------------------------------------
  35. //    PartInfo Resource
  36. //----------------------------------------------------------------------------------------
  37.  
  38. resource FW_RPartInfo(kPartInfoID)
  39. {
  40.     // ----- Icon ID
  41.     kViewAsIconID,
  42.  
  43.     // ----- Part Name
  44.     kAMSampleEditorUserString,
  45.  
  46.     // ----- PartKind
  47.     kAMSampleKind
  48. };
  49.  
  50. //----------------------------------------------------------------------------------------
  51. //    About Resource
  52. //----------------------------------------------------------------------------------------
  53.  
  54. resource FW_RAbout(kAbout)
  55. {
  56.     // ----- Icon ID
  57.     kAboutIconID,
  58.     // ----- Part Name
  59.     FW_RStyledText
  60.     (
  61.         FW_FIX(18), 
  62.         FW_kBold, 
  63.         "times", 
  64.         "AMSample"
  65.     ),
  66.     // ----- Version Number
  67.     FW_RStyledText
  68.     (
  69.         FW_FIX(9),
  70.         FW_kPlain,
  71.         "geneva",
  72.         "ODF Release 1"
  73.     ),
  74.     // ----- Credits
  75.     FW_RStyledText
  76.     (
  77.         FW_FIX(9),
  78.         FW_kPlain,
  79.         "geneva",
  80.         "AMSample is a simple non-embedding part editor that "
  81.         "displays a single text string. \r\r\r\r\r"                                    
  82.         "Written by the ODF Team.\r"
  83.     )
  84. };
  85.